home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2006 September / SAN CD 9-2006 CD-ROM 16.iso / pc / Software / Network Telescope Control / NTC-Setup.Exe / Source / ntc_ciel_client_network.dfm < prev    next >
Encoding:
Text File  |  2005-07-30  |  3.0 KB  |  137 lines

  1. object scope_network: Tscope_network
  2.   Left = 40
  3.   Top = 120
  4.   HelpType = htKeyword
  5.   HelpKeyword = 'client_network'
  6.   BorderStyle = bsDialog
  7.   Caption = 'NTC Client Network'
  8.   ClientHeight = 314
  9.   ClientWidth = 261
  10.   Color = clBtnFace
  11.   DockSite = True
  12.   Font.Charset = DEFAULT_CHARSET
  13.   Font.Color = clWindowText
  14.   Font.Height = -11
  15.   Font.Name = 'MS Sans Serif'
  16.   Font.Style = []
  17.   HelpFile = 'ntc.hlp'
  18.   OldCreateOrder = False
  19.   OnCloseQuery = form_close_query
  20.   OnCreate = formcreate
  21.   OnPaint = check_activate
  22.   OnShow = FormShow
  23.   PixelsPerInch = 96
  24.   TextHeight = 13
  25.   object network_panel: TPanel
  26.     Left = 0
  27.     Top = 0
  28.     Width = 261
  29.     Height = 314
  30.     Align = alClient
  31.     DockSite = True
  32.     TabOrder = 0
  33.     object server_connect_group: TGroupBox
  34.       Left = 0
  35.       Top = 0
  36.       Width = 257
  37.       Height = 81
  38.       Caption = 'Connect to server'
  39.       TabOrder = 0
  40.       object connect_to_server_button: TSpeedButton
  41.         Left = 96
  42.         Top = 48
  43.         Width = 71
  44.         Height = 22
  45.         Caption = 'Connect'
  46.         Enabled = False
  47.         OnClick = connect_to_server_buttonClick
  48.       end
  49.       object disconnect_from_server_button: TSpeedButton
  50.         Left = 176
  51.         Top = 48
  52.         Width = 71
  53.         Height = 22
  54.         Caption = 'Disconnect'
  55.         Enabled = False
  56.         OnClick = disconnect_from_server_buttonClick
  57.       end
  58.       object connected_light: TMaskEdit
  59.         Left = 8
  60.         Top = 48
  61.         Width = 81
  62.         Height = 21
  63.         Color = clRed
  64.         TabOrder = 0
  65.       end
  66.       object server_ip_edit: TEdit
  67.         Left = 8
  68.         Top = 16
  69.         Width = 129
  70.         Height = 21
  71.         TabOrder = 1
  72.         Text = '127.0.0.1'
  73.       end
  74.       object edit_port: TEdit
  75.         Left = 144
  76.         Top = 16
  77.         Width = 105
  78.         Height = 21
  79.         TabOrder = 2
  80.         Text = '8383'
  81.       end
  82.     end
  83.     object status_log: TMemo
  84.       Left = 0
  85.       Top = 84
  86.       Width = 257
  87.       Height = 189
  88.       ScrollBars = ssVertical
  89.       TabOrder = 1
  90.     end
  91.     object clear_log_button: TBitBtn
  92.       Left = 40
  93.       Top = 282
  94.       Width = 57
  95.       Height = 25
  96.       Hint = 'Clear list'
  97.       Caption = 'Clear Log'
  98.       TabOrder = 2
  99.       OnClick = clear_log_buttonClick
  100.     end
  101.     object messages_button: TBitBtn
  102.       Left = 96
  103.       Top = 282
  104.       Width = 57
  105.       Height = 25
  106.       Hint = 'Show Messages'
  107.       Caption = 'Message'
  108.       TabOrder = 3
  109.       OnClick = messages_buttonClick
  110.     end
  111.     object disk_button: TBitBtn
  112.       Left = 152
  113.       Top = 282
  114.       Width = 57
  115.       Height = 25
  116.       Hint = 'Write log to disk'
  117.       Caption = 'Logging'
  118.       TabOrder = 4
  119.       OnClick = disk_buttonClick
  120.     end
  121.   end
  122.   object network_timer: TTimer
  123.     Enabled = False
  124.     Interval = 30000
  125.     OnTimer = network_timerTimer
  126.     Left = 376
  127.     Top = 88
  128.   end
  129.   object scope_client: TIdTCPClient
  130.     MaxLineAction = maException
  131.     ReadTimeout = 0
  132.     Port = 0
  133.     Left = 80
  134.     Top = 96
  135.   end
  136. end
  137.